c# remove first three characters from string

73

c# remove first three characters from string -

str = "hello world!";
str.Substring(n, str.Length-n)

Comments

Submit
0 Comments